DIM

Syntax:

DIM array#$ [d1#] | [d2#] [d3#] ... [d8#]

Creates a memory array for numbers / words. Every single data index will be set to 0. The first element has the index 0.

Sample:

DIM array[8][8]
FOR x=0 TO 7
    FOR y=0 to 7
        feld [x] [y] = x*100 + y
    NEXT
NEXT

PRINT array [4] [5], 100, 100
SHOWSCREEN
MOUSEWAIT